#hero {
    /* min-height: 100vh; */
    background: var(--grad);
    background-size: cover;
    min-height: 37rem;
}

.banner-content {
    padding: 5rem 0px;
}

.banner-img {
    width: 100%;
    box-shadow: 0px 16px 32px rgba(20, 27, 52, 0.4);
}

#products {
    background: url("../images/home/blue-shadow.png") no-repeat left top, url("../images/home/purple-shadow.png") no-repeat right top, url("../images/faq-bg.svg") no-repeat 50% -100%;
}

.highlights-holder {
    border-radius: 1rem;
    border: 1px solid #3A4776;
    background: linear-gradient(122deg, rgba(83, 107, 193, 0.20) 0%, rgba(32, 42, 75, 0.20) 100%);
    box-shadow: 0px 8px 16px 0px rgba(31, 42, 76, 0.12);
    backdrop-filter: blur(25px);
    padding: 1.5rem;
    margin-top: 2rem;
}

.highlights-holder .highlight:nth-child(2) {
    border-left: 1px dashed #707FB2;
    border-right: 1px dashed #707FB2;
}

.highlight {
    width: 33.33%;
}

.highlight h2 {
    font-size: 2.625rem;
    font-weight: bold;
}

.highlight.pink h2 {
    color: #FF73A6;
}

.highlight.purple h2 {
    color: #AB79F6;
}

.highlight.green h2 {
    color: #51D3B4;
}

.main-heading .highlight-text {
    display: block;
}

.product-block {
    padding: 2rem;
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: 0px 0.5rem 2rem rgba(103, 113, 127, 0.10);
    width: 32%;
    margin-top: 1.5rem;
}

.product-block img {
    max-width: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.product-block h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-block p {
    line-height: 1.3;
    color: var(--gray);
}


/* Media Query */

@media screen and (max-width: 768px) {
    .product-block {
        width: 48%;
    }
}

@media screen and (max-width: 580px) {
    .product-block {
        width: 100%;
    }
    .highlight {
        width: 100%;
    }
    .highlights-holder .highlight:nth-child(2) {
        border-top: 1px dashed #707FB2;
        border-bottom: 1px dashed #707FB2;
        padding: 1.5rem 0px;
        margin: 1.5rem 0px;
        border-left: unset;
        border-right: unset;
    }
}